From: Andrew Cooper Date: Mon, 12 Sep 2016 09:30:00 +0000 (+0100) Subject: x86/domctl: Introduce PV_XSAVE_HDR_SIZE and remove its opencoding X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~409 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=80b9ea63b0955c692a71bc841f4ec0a501da7c4b;p=xen.git x86/domctl: Introduce PV_XSAVE_HDR_SIZE and remove its opencoding Also remove opencoding of PV_XSAVE_SIZE(). Undefine both when they are done with. No functional change. Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich --- diff --git a/xen/arch/x86/domctl.c b/xen/arch/x86/domctl.c index a904fd6130..c9355cee54 100644 --- a/xen/arch/x86/domctl.c +++ b/xen/arch/x86/domctl.c @@ -1037,7 +1037,8 @@ long arch_do_domctl( struct vcpu *v; uint32_t offset = 0; -#define PV_XSAVE_SIZE(xcr0) (2 * sizeof(uint64_t) + xstate_ctxt_size(xcr0)) +#define PV_XSAVE_HDR_SIZE (2 * sizeof(uint64_t)) +#define PV_XSAVE_SIZE(xcr0) (PV_XSAVE_HDR_SIZE + xstate_ctxt_size(xcr0)) ret = -ESRCH; if ( (evc->vcpu >= d->max_vcpus) || @@ -1093,10 +1094,10 @@ long arch_do_domctl( } expand_xsave_states(v, xsave_area, - size - 2 * sizeof(uint64_t)); + size - PV_XSAVE_HDR_SIZE); if ( copy_to_guest_offset(evc->buffer, offset, xsave_area, - size - 2 * sizeof(uint64_t)) ) + size - PV_XSAVE_HDR_SIZE) ) ret = -EFAULT; xfree(xsave_area); } @@ -1110,9 +1111,8 @@ long arch_do_domctl( const struct xsave_struct *_xsave_area; ret = -EINVAL; - if ( evc->size < 2 * sizeof(uint64_t) || - evc->size > 2 * sizeof(uint64_t) + - xstate_ctxt_size(xfeature_mask) ) + if ( evc->size < PV_XSAVE_HDR_SIZE || + evc->size > PV_XSAVE_SIZE(xfeature_mask) ) goto vcpuextstate_out; receive_buf = xmalloc_bytes(evc->size); @@ -1131,11 +1131,11 @@ long arch_do_domctl( _xcr0 = *(uint64_t *)receive_buf; _xcr0_accum = *(uint64_t *)(receive_buf + sizeof(uint64_t)); - _xsave_area = receive_buf + 2 * sizeof(uint64_t); + _xsave_area = receive_buf + PV_XSAVE_HDR_SIZE; if ( _xcr0_accum ) { - if ( evc->size >= 2 * sizeof(uint64_t) + XSTATE_AREA_MIN_SIZE ) + if ( evc->size >= PV_XSAVE_HDR_SIZE + XSTATE_AREA_MIN_SIZE ) ret = validate_xstate(_xcr0, _xcr0_accum, &_xsave_area->xsave_hdr); } @@ -1155,7 +1155,7 @@ long arch_do_domctl( if ( _xcr0_accum & XSTATE_NONLAZY ) v->arch.nonlazy_xstate_used = 1; compress_xsave_states(v, _xsave_area, - evc->size - 2 * sizeof(uint64_t)); + evc->size - PV_XSAVE_HDR_SIZE); vcpu_unpause(v); } else @@ -1164,6 +1164,9 @@ long arch_do_domctl( xfree(receive_buf); } +#undef PV_XSAVE_HDR_SIZE +#undef PV_XSAVE_SIZE + vcpuextstate_out: if ( domctl->cmd == XEN_DOMCTL_getvcpuextstate ) copyback = 1;